home *** CD-ROM | disk | FTP | other *** search
/ NetNews Offline 2 / NetNews Offline Volume 2.iso / news / comp / sys / amiga / networking / 1314 < prev    next >
Encoding:
Internet Message Format  |  1996-08-05  |  1.9 KB

  1. Path: soap.news.pipex.net!pipex!usenet
  2. From: m.hendry@dial.pipex.com (Mathew Hendry)
  3. Newsgroups: comp.sys.amiga.networking
  4. Subject: Re: AmiTCP & socket.library
  5. Date: Thu, 8 Feb 96 15:26:21
  6. Organization: Private node.
  7. Distribution: world
  8. Message-ID: <19960208.48A150.DD4C@ak114.du.pipex.com>
  9. References: <4fbd8e$bsn@crchh327.rich.bnr.ca>
  10. NNTP-Posting-Host: ak114.du.pipex.com
  11. X-Newsreader: TIN [AMIGA 1.3 950726BETA PL0]
  12.  
  13. Marc Hebert (hebertm@bnr.ca) wrote:
  14. : A question I couldn't find an answer for in any docs or FAQs:
  15. : When I reconfigured AmiTCP (demo v4.0, with commercial PPP 1.something) for
  16. : a different Internet provider, I screwed something up with my socket.library.
  17. : The startnet script appears to complete ok, but when I try to use any app I get
  18. : a AmigaOS notification box to insert volume "inet" (INetUtils related?), and
  19. : then a failure to open sockets with socket.library notification.  Grapevine 
  20. : gives a little more info, saying to ensure the ENV var SOCKETCONFIG is correct.
  21. : I check and it's undefined, and I don't know what it was ever set at and can't
  22. : find a mention of it in the docs.
  23.  
  24. INET: is an assign used by AS225, Commodore's TCP/IP stack, which it supplied
  25. to registered developers and with some of its networking cards. The AmiTCP
  26. socket.library is an attempt to "emulate" AS225 functions on an AmiTCP
  27. setup. It's not a complete emulation, but it's sufficient for most
  28. applications.
  29.  
  30. There are full details on how to set it up in the documentation for Grapevine.
  31. Basically you have to add two lines to your startnet script (preferably
  32. somewhere near the end):
  33.  
  34. Assign INET: AmiTCP:
  35. SetEnv SOCKETCONFIG UID=100 GID=100 USER=<user name> DOMAIN=<domain name> UMASK=022
  36.  
  37. e.g. I have:
  38.  
  39. Assign INET: AmiTCP:
  40. SetEnv SOCKETCONFIG UID=100 GID=100 USER=Scampi DOMAIN=du.pipex.com UMASK=022
  41.  
  42. Also, make sure socket.library is in AmiTCP:Libs.
  43.  
  44. If you get all this right, everything should work okay.
  45.  
  46. -- Mat.
  47.